home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Inne / Gry / GNU_Backgammon / gnubg-MAIN-20110822-setup.exe / {app} / matchseries.py < prev    next >
Text File  |  2007-07-02  |  5KB  |  151 lines

  1. #
  2. # matchseries.py
  3. #
  4. # Martin Janke <lists@janke.net>, 2004
  5. # Achim Mueller <ace@gnubg.org>, 2004
  6. # Joern Thyssen <jth@gnubg.org>, 2004
  7. #
  8. # This program is free software; you can redistribute it and/or modify
  9. # it under the terms of version 3 or later of the GNU General Public License as
  10. # published by the Free Software Foundation.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program; if not, write to the Free Software
  19. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  20. #
  21. # Play an arbitray number of matches. 
  22. #
  23. # For example, the script could be used to play gnubg 0-ply using
  24. # the Snowie MET against gnubg 0-ply using the Woolsey-Heinrich MET. 
  25. # This is achieved by using the external player interface. 
  26. #
  27. # gnubg -t << EOF
  28. # set matchequitytable "met/snowie.xml"
  29. # set evaluation chequerplay eval plies 0
  30. # set evaluation cubed eval plies 0
  31. # external localhost:10000
  32. # EOF
  33. #
  34. # gnubg -t << EOF
  35. # set matchequitytable "met/woolsey.xml"
  36. # set player 1 gnu
  37. # set player 1 chequerplay evaluation plies 0
  38. # set player 1 cubedecision evaluation plies 0
  39. # set player 0 external localhost:10000
  40. # >
  41. # from matchseries import *
  42. # playMatchSeries (matchLength = 3, noOfMatches = 1000,
  43. #                  statsFile = "statistics.txt", sgfBasePath = None,
  44. #                  matBasePath = None)
  45. # EOF
  46. # $Id: matchseries.py,v 1.2 2007/07/02 12:50:13 ace Exp $
  47. #
  48.  
  49. import gnubg
  50.  
  51. def playMatchSeries( statsFile = None, # log file
  52.                      matchLength = 7,
  53.                      noOfMatches = 100,
  54.                      sgfBasePath = None,  # optional
  55.                      matBasePath = None): # optional
  56.     """Starts noOfMatches matchLength pointers. For every match
  57.     the running score, gammoms (g) and backgammons (b) and the match winner
  58.     is written to 'statsFile':
  59.     g       gammon
  60.     b       backgammon
  61.     (g)     gammon, but not relevsnt (end of match)
  62.     (b)     backgammon, but not relevant
  63.     g(b)    backgammon, but gammon would have been enough to win the match
  64.  
  65.     If the optional parameters 'sgfBasePath' and 'matBasePath' are set to a
  66.     path, the matches are saved as sgf or mat file."""
  67.  
  68.     for i in range(0, noOfMatches):
  69.  
  70.         if not statsFile:
  71.             raise ValueError('Parameter "statsFile" is mandatory')
  72.  
  73.         gnubg.command('new match ' + str(matchLength))
  74.  
  75.         matchInfo = formatMatchInfo(gnubg.match(analysis=0, boards=0))
  76.  
  77.         f = open(statsFile, 'a')
  78.         f.write(matchInfo)
  79.         f.close
  80.  
  81.         if sgfBasePath:
  82.             gnubg.command('save match ' + sgfBasePath +\
  83.                         str(i) + '.sgf')
  84.         if matBasePath:
  85.             gnubg.command('export match mat ' + matBasePath +\
  86.                            str(i) + '.mat')
  87.  
  88.  
  89.  
  90. def formatMatchInfo(matchInfo):
  91.     tempS = ''
  92.     outString = ''
  93.     score = [0,0]
  94.     matchLength = matchInfo['match-info']['match-length']
  95.  
  96.     for game in matchInfo['games']:
  97.         pw = game['info']['points-won']
  98.         if game['info']['winner'] == 'O':
  99.             winner = 1
  100.         else:
  101.             winner = 0
  102.         oldScore = score[winner]
  103.         score[winner] += pw
  104.  
  105.         cube = getCube(game)
  106.         print 'cube: ', cube
  107.  
  108.         if pw == cube:
  109.             gammon = ''
  110.         elif pw == 2 * cube:
  111.             gammon = 'g'
  112.             if (cube + oldScore) >= matchLength: # gammon not relevant
  113.                 gammon = '(g)'
  114.  
  115.         elif pw == 3 * cube:
  116.             gammon = 'b'
  117.  
  118.             if (cube + oldScore) >= matchLength: # backgammon not relevant
  119.                 gammon = '(b)'
  120.             elif (2 * cube + oldScore) >= matchLength:
  121.                 # backgammon not relevant, but gammon
  122.                 gammon = 'g(b)'
  123.  
  124.         outString += ',%d:%d%s' % (score[0], score[1], gammon)
  125.  
  126.     outString = str(winner) + outString + '\n'
  127.  
  128.     return outString
  129.  
  130. def getCube(game):
  131.     """returns the cube value of the game"""
  132.     doubled = 0
  133.     cube = 1
  134.     for turn in game['game']:
  135.         if turn['action'] == 'double':
  136.             doubled = 1
  137.             continue
  138.  
  139.         if doubled:
  140.             if turn['action'] == 'take':
  141.                 cube *= 2
  142.                 doubled = 0
  143.             else: # dropped
  144.                 break
  145.     return cube
  146.  
  147.  
  148.  
  149.  
  150.